home *** CD-ROM | disk | FTP | other *** search
/ The National Palace Museum Experience / The National Palace Museum Experience.iso / Programs / Panorama.dxr / 00089_control handlers.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  4.2 KB  |  163 lines

  1. global nodepict, hiliterect, gmouseupslist, gmousedownslist
  2.  
  3. on initcontrols
  4.   set gmousedownslist to []
  5.   set gmouseupslist to []
  6.   setAt(gmouseupslist, nodepict, 0)
  7.   setAt(gmousedownslist, nodepict, 0)
  8. end
  9.  
  10. on addcontrol channel, chotspots, cactions, whichway
  11.   if not listp(chotspots) or not listp(cactions) then
  12.     return #badcontrol
  13.   end if
  14.   if count(chotspots) <> count(cactions) then
  15.     return #badcontrol
  16.   end if
  17.   if whichway = #down then
  18.     setAt(gmousedownslist, channel, [chotspots, cactions])
  19.   else
  20.     setAt(gmouseupslist, channel, [chotspots, cactions])
  21.   end if
  22. end
  23.  
  24. on deletecontrol channel, whichway
  25.   if (whichway = #up) or (whichway = #both) then
  26.     setAt(gmouseupslist, channel, 0)
  27.   end if
  28.   if (whichway = #down) or (whichway = #both) then
  29.     setAt(gmousedownslist, channel, 0)
  30.   end if
  31. end
  32.  
  33. on hitcontrol whichway
  34.   set me to the clickOn
  35.   set hitpoint to point(the mouseH - the left of sprite me, the mouseV - the top of sprite me)
  36.   if whichway = #down then
  37.     set controlslist to gmousedownslist
  38.   else
  39.     set controlslist to gmouseupslist
  40.   end if
  41.   set mycontrol to getAt(controlslist, me)
  42.   if not listp(mycontrol) then
  43.     return #notcontrol
  44.   end if
  45.   if count(mycontrol) < 2 then
  46.     return #notcontrol
  47.   end if
  48.   set hitlist to getAt(mycontrol, 1)
  49.   if not listp(hitlist) then
  50.     return #notcontrol
  51.   end if
  52.   set actionlist to getAt(mycontrol, 2)
  53.   if not listp(actionlist) then
  54.     return #notcontrol
  55.   end if
  56.   if (count(actionlist) <> count(hitlist)) or (count(hitlist) = 0) then
  57.     return #badcontrol
  58.   end if
  59.   repeat with i in hitlist
  60.     set n to getOne(hitlist, i)
  61.     set left to getAt(i, 1) - 5
  62.     set top to getAt(i, 2) - 5
  63.     set right to getAt(i, 3) + 5
  64.     set bottom to getAt(i, 4) + 5
  65.     set hitr to rect(left, top, right, bottom)
  66.     if inside(hitpoint, hitr) then
  67.       puppetSound(3, "Button")
  68.       updateStage()
  69.       put 60 into field "FOV"
  70.       do(getAt(actionlist, n))
  71.       exit repeat
  72.     end if
  73.   end repeat
  74. end
  75.  
  76. on checkrollover whichway
  77.   set noroll to 1
  78.   repeat with i = hiliterect - 1 down to 1
  79.     if rollOver(i) then
  80.       if (listp(getAt(gmouseupslist, i)) and ((whichway = #up) or (whichway = #both))) or (listp(getAt(gmousedownslist, i)) and ((whichway = #down) or (whichway = #both))) then
  81.         hilitecontrol(i, whichway)
  82.         set noroll to 0
  83.         exit repeat
  84.       end if
  85.     end if
  86.   end repeat
  87.   if noroll then
  88.     set the locH of sprite nodepict to -1000
  89.     updateStage()
  90.   end if
  91. end
  92.  
  93. on hilitecontrol contnum, whichway
  94.   set norect to 1
  95.   if (whichway = #up) or (whichway = #both) then
  96.     set upcont to getAt(gmouseupslist, contnum)
  97.     if not listp(upcont) then
  98.       set uprects to []
  99.     end if
  100.     if count(upcont) < 2 then
  101.       set uprects to []
  102.     end if
  103.     if voidp(uprects) then
  104.       set uprects to getAt(upcont, 1)
  105.     else
  106.       nothing()
  107.     end if
  108.   else
  109.     set uprects to []
  110.   end if
  111.   if (whichway = #down) or (whichway = #both) then
  112.     set downcont to getAt(gmousedownslist, contnum)
  113.     if not listp(downcont) then
  114.       set downrects to []
  115.     end if
  116.     if count(downcont) < 2 then
  117.       set downrects to []
  118.     end if
  119.     if voidp(downrects) then
  120.       set downrects to getAt(downcont, 1)
  121.     else
  122.       nothing()
  123.     end if
  124.   else
  125.     set downrects to []
  126.   end if
  127.   set rectlist to combo(uprects, downrects)
  128.   set hoff to the left of sprite contnum
  129.   set voff to the top of sprite contnum
  130.   set where to point(the mouseH - hoff, the mouseV - voff)
  131.   repeat with r in rectlist
  132.     set left to getAt(r, 1) - 5
  133.     set top to getAt(r, 2) - 5
  134.     set right to getAt(r, 3) + 5
  135.     set bottom to getAt(r, 4) + 5
  136.     set r1 to rect(left, top, right, bottom)
  137.     if inside(where, r1) then
  138.       spriteBox(nodepict, getAt(r, 1) + hoff, getAt(r, 2) + voff, getAt(r, 3) + hoff, getAt(r, 4) + voff)
  139.       updateStage()
  140.       set norect to 0
  141.       exit repeat
  142.     end if
  143.   end repeat
  144.   if norect then
  145.     set the locH of sprite nodepict to -1000
  146.   end if
  147. end
  148.  
  149. on combo alist, anotherlist
  150.   set rectlist to []
  151.   repeat with r in alist
  152.     if ilk(r, #rect) then
  153.       add(rectlist, r)
  154.     end if
  155.   end repeat
  156.   repeat with r in anotherlist
  157.     if ilk(r, #rect) then
  158.       add(rectlist, r)
  159.     end if
  160.   end repeat
  161.   return rectlist
  162. end
  163.